The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
Changes 03
META.yml 35
Makefile.PL 24
lib/Catalyst/Plugin/Session/Store/Delegate.pm 11
4 files changed (This is a version diff) 613
@@ -1,3 +1,6 @@
+0.06
+        - Fix dependencies in Makefile.PL
+
 0.05
         - Port to new session config key.
         - Port to Moose.
@@ -22,9 +22,11 @@ no_index:
     - t
 requires:
   Catalyst::Plugin::Session: 0.27
-  Class::Accessor::Fast: 0
   MRO::Compat: 0
+  Moose: 0
+  MooseX::Emulate::Class::Accessor::Fast: 0
+  namespace::clean: 0
 resources:
   license: http://dev.perl.org/licenses/
-  repository: http://dev.catalyst.perl.org/repos/Catalyst/trunk/Catalyst-Plugin-Session-Store-Delegate/
-version: 0.05
+  repository: http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Plugin-Session-Store-Delegate/
+version: 0.06
@@ -7,12 +7,14 @@ use warnings;
 all_from 'lib/Catalyst/Plugin/Session/Store/Delegate.pm';
 name 'Catalyst-Plugin-Session-Store-Delegate';
 requires 'Catalyst::Plugin::Session' => '0.27';
-requires 'Class::Accessor::Fast' => '0';
+requires 'Moose';
+requires 'namespace::clean';
+requires 'MooseX::Emulate::Class::Accessor::Fast';
 test_requires 'Test::More' => '0';
 test_requires 'Test::use::ok' => '0';
 requires 'MRO::Compat' => '0';
 
-resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/trunk/Catalyst-Plugin-Session-Store-Delegate/';
+resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Plugin-Session-Store-Delegate/';
 
 WriteAll;
 
@@ -9,7 +9,7 @@ use namespace::clean -except => 'meta';
 extends 'Catalyst::Plugin::Session::Store';
 with 'MooseX::Emulate::Class::Accessor::Fast';
 
-our $VERSION = "0.05";
+our $VERSION = "0.06";
 
 __PACKAGE__->mk_accessors(qw/_session_store_delegate/);